<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

@import url('bootstrap-custom-override.css');
/*Custom Stylesheet
Alexander Aston Zapata
az.alexander@uky.edu
Last Updated: 3/12/18
Terra Dotta Custom layout 
*/

/* This is the contanier that holds all the main content */
main{
    background-color:#ffffff;
	 box-shadow:none;
	 padding-bottom:164px;
}

.bg-primary {
    color: #fff;
    background-color: #660099;
}

.btn-primary {
    color: #fff;
    background-color: #660099;
	border-color: #660099;
}

.btn-primary:hover {
    color: #fff;
    background-color: #999999;
	border-color: #999999;
}




/* This is the outside gutter regions */
body{
	background-color:#F9F9F9;
	background-image: none;
	}
	
/* This is the main SA header that runs along the top of all the pages */
header#pageheader{	
	color:#fff;
	}
	
/* This is the main SA footer that runs along the bottom of all the pages */
footer#pagefooter{
	padding: 2px;
	background: #000;
    color: #fff !important;
	position:absolute;
	min-height:164px;
}

/* This removes the box shadow from panels to give it a "flat" feel */
.panel {
    box-shadow: none;
}
/* This removes the color gradient from all panel headers */
.panel .panel-heading{
	background-image: none;
	background: #660099;
	border-bottom-color: #660099;
	border-color: #660099
}
/* This changes the border color of all panels to a light grey color to match overall theme */
.panel-primary{
    border-color: #f3f3f3;
}

/* This removes the box shadow from Announcements box */
#pagebodysidebar .sidebar-nav{
	box-shadow: 0 6px 12px rgba(0,0,0,0.0);
}

/* This removes the box shadow from Announcements box */
#pagebodysidebar .sidebar-nav{
	box-shadow: 0 6px 12px rgba(0,0,0,0.0);
}

/* This removes the border from any list group item. Mainly seen on brochure pages around the buttons */
li.list-group-item{
    border:1px solid #fff;
}

/* Makes the select boxes "longer" so that more options are viewable. Less Scrolling within small boxes trying to select multiple values*/
select[multiple], select[size]{
    height: auto;
    min-height: 300px;
}

 
 #back-top{
	background: #bbb;
	position: fixed;
    bottom: 10px;
	right: 15px;
    margin-left: 20px;
    z-index: 499;
	padding: 5px;
 }

 #back-top a i{color: #fff;}

header .loginbutton {
	float:right;
	margin: 15px 0px;
}

/* This will make the hovered dropdown section of the nave menu a darker shade that works well with the theme color */
.navbar-inverse .navbar-nav &gt; .active &gt; a, .navbar-inverse .navbar-nav &gt; .active &gt; a:hover, .navbar-inverse .navbar-nav &gt; .active &gt; a:focus {
	background-color:#660099;
}

/* This will make the open dropdown section of the nave menu a darker shade that works well with the theme color */
.navbar-inverse .navbar-nav &gt; .open &gt; a, .navbar-inverse .navbar-nav &gt; .open &gt; a:hover, .navbar-inverse .navbar-nav &gt; .open &gt; a:focus {
	background-color:#999999;
}
/* Changes the style of the user's name to make it show up better with the new menu color */
.navbar-inverse .navbar-text {
    color:#FFFFFF ;
    font-weight: bold;
}
	
/* This determines the link color when hovering over them in the footer only */
footer a:hover, footer a:active {
	color:#fff;
	font-weight:bold;
	text-decoration:none;
}

footer a:focus{
	color:#fff;
	text-decoration:none;
}
footer a {
	color:#fff;
}
footer .button {
    background-color: #660099;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

/*this sretches the image across the full width of the content*/
.img-responsive{
	
	width:100%;
}

/*This removes the blue from the primary buttons */
.btn-primary:active, 
.btn-primary:focus{
	
	background-color: #999999 !important;
	border-color: #999999 !important;
}
/* This increases the default height of the WYSIWYG editor */
.cke_reset {min-height:700px;}

/* Increases the height of the popup when adding an image in the WYSIWYG */
.cke_dialog_ui_iframe {height: 480px !important;}	
.btn-custom {
  background-color: #660099;
  border-color: #660099;
}

/* additional CSS - emt-uom */

/* sets the width of the content area*/
.public-page-content
{
    width: 100%;
}

/* hides the sidebar */
#pagebodysidebar{
    display:none;
}

/*sets the width of the main container*/
.main-container
{
    width: 100%;
    text-align: center;
} 
.sections-header{
    margin-top:20px;
}
/*aligns and space the header text.*/
.sections-header-text
{
    text-align: left;
    margin-top: 20px;
}

/*evenly space and wrap the sections */
.sections
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
   
}

/*add some spacing to the top of the sections*/
.section
{
    margin-top: 20px;
}

/* sets the dimension of the image */
/*.img-section
{
    height: 260px; 
    width: 260px; 
}*/

/*sets the width and text alignment of the section */
.existing-user-section
{
    width:100%;
    text-align: center;
}

/* sets the dimensions and alignment of the image */
.img-existing-users
{
    height: 120px; 
    width: 240px; 
    display: inline-block;
}

/* IE 9+ specific CSS */
@media screen and (min-width:0px) and (min-resolution:72dpi){
    .sections {
        text-align: center;
    }
    .section{
        display: inline-block;
        padding:10px;
        margin: auto;
    }
}
</pre></body></html>